home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.5 KB | 68 lines | [TEXT/MPS ] |
- //----------------------------------------------------------------------------------------
- // UMovieViewer.h
- // Copyright © 1996 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- /*
- Change History:
- 03/14/96 gjc First Checkin.
- */
- #ifndef __UMovieViewer__
- #define __UMovieViewer__
-
- //MacApp
- #ifndef __UAPPLICATION__
- #include "UApplication.h"
- #endif
-
- #ifndef __UFILEBASEDDOCUMENT__
- #include "UFileBasedDocument.h"
- #endif
-
- #ifndef __UQUICKTIME__
- #include "UQuickTime.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TMovieViewerApplication
- //----------------------------------------------------------------------------------------
-
- class TMovieViewerApplication : public TApplication
- {
- MA_DECLARE_CLASS;
-
- public:
-
- virtual void IMovieViewerApplication();
-
- virtual TDocument* DoMakeDocument(CommandNumber itsCommandNumber,
- TFile* itsFile);// Override
- };
-
-
- //----------------------------------------------------------------------------------------
- // TMovieViewerDocument
- //----------------------------------------------------------------------------------------
-
- class TMovieViewerDocument : public TFileBasedDocument
- {
- MA_DECLARE_CLASS;
-
- public:
- ~TMovieViewerDocument();
-
- // Construction/Destruction
- virtual void IMovieViewerDocument(TFile* itsFile,
- OSType itsCreator);
-
- // Views
- virtual void DoMakeViews(Boolean forPrinting);// Override
-
- private:
-
- TMovie* fMovie;
- };
- #endif
-
-
-